From 07d94e438d14ce03fcb4b24ddca596a127cf5442 Mon Sep 17 00:00:00 2001 From: Ewan Mellor Date: Tue, 28 Nov 2006 16:22:22 +0000 Subject: [PATCH] Allow the C bindings to be more permissive when a structure is missing some entries. Complaining is just slowing development down when the server and clients get out of sync. Signed-off-by: Ewan Mellor --- tools/libxen/src/xen_common.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tools/libxen/src/xen_common.c b/tools/libxen/src/xen_common.c index bd370bb257..50b8e377e0 100644 --- a/tools/libxen/src/xen_common.c +++ b/tools/libxen/src/xen_common.c @@ -35,6 +35,14 @@ #include "xen_string_string_map.h" +/* + * Whether to ignore missing structure entries. This is not something we + * want to do, once the API has stabilised, as it indicates that the server is + * broken, but at the moment, complaining is just slowing development down. + */ +#define PERMISSIVE 1 + + static xmlXPathCompExprPtr responsePath = NULL; static xmlXPathCompExprPtr faultPath = NULL; @@ -756,6 +764,7 @@ static void parse_into(xen_session *s, xmlNode *value_node, cur = cur->next; } +#if !PERMISSIVE /* Check that we've filled all fields. */ for (size_t i = 0; i < member_count; i++) { @@ -780,6 +789,7 @@ static void parse_into(xen_session *s, xmlNode *value_node, return; } } +#endif free(checklist); ((void **)value)[slot] = result; -- 2.30.2